home *** CD-ROM | disk | FTP | other *** search
/ Mac Installer 3 / Mac Installer Volume 3 (1996).iso / mac / MM Director 5.0 / FileFlex Lite / FileFlex Xtras / -Database Designer / 00072_DefineButtonBar.ls < prev    next >
Encoding:
Text File  |  1996-10-15  |  643 b   |  26 lines

  1. on mouseUp
  2.   global baseSprite, fieldSpec
  3.   put EMPTY into item 1 of fieldSpec
  4.   if the mouseH > 412 then
  5.     put "M" into item 2 of fieldSpec
  6.   else
  7.     if the mouseH > 375 then
  8.       put "D" into item 2 of fieldSpec
  9.     else
  10.       if the mouseH > 337 then
  11.         put "L" into item 2 of fieldSpec
  12.       else
  13.         if the mouseH > 299 then
  14.           put "N" into item 2 of fieldSpec
  15.           put "3" into item 3 of fieldSpec
  16.           put "2" into item 4 of fieldSpec
  17.         else
  18.           put "C" into item 2 of fieldSpec
  19.           put "10" into item 3 of fieldSpec
  20.         end if
  21.       end if
  22.     end if
  23.   end if
  24.   setDefineField()
  25. end
  26.